From f49361ae788ef224a79ee2cfbe279279b067bd0e Mon Sep 17 00:00:00 2001 From: "kfraser@localhost.localdomain" Date: Mon, 14 Aug 2006 11:18:37 +0100 Subject: [PATCH] [HVM] More info when failing to emulate instruction group 1. Signed-off-by: Keir Fraser --- xen/arch/x86/hvm/platform.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/xen/arch/x86/hvm/platform.c b/xen/arch/x86/hvm/platform.c index 2ee9fd9683..f1bfd4c479 100644 --- a/xen/arch/x86/hvm/platform.c +++ b/xen/arch/x86/hvm/platform.c @@ -462,7 +462,8 @@ static int hvm_decode(int realmode, unsigned char *opcode, struct instruction *i return DECODE_success; default: - printf("%x, This opcode isn't handled yet!\n", *opcode); + printf("%x/%x, This opcode isn't handled yet!\n", + *opcode, ins_subtype); return DECODE_failure; } } -- 2.30.2